Package-level declarations
The nodes form the node-graph described in the YAML Specification.
Types
Link copied to clipboard
This class is only used during representation (dumping)
Link copied to clipboard
Base class for the two collection types mapping and collection.
Link copied to clipboard
class MappingNode @JvmOverloads constructor(tag: Tag, val value: List<NodeTuple>, flowStyle: FlowStyle, resolved: Boolean = true, startMark: Mark? = null, endMark: Mark? = null) : CollectionNode<NodeTuple>
Represents a map.
Link copied to clipboard
class ScalarNode @JvmOverloads constructor(var tag: Tag, val value: String, val scalarStyle: ScalarStyle, resolved: Boolean = true, val startMark: Mark? = null, var endMark: Mark? = null) : Node
Represents a scalar node.
Link copied to clipboard
class SequenceNode @JvmOverloads constructor(tag: Tag, val value: List<Node>, flowStyle: FlowStyle, resolved: Boolean = true, startMark: Mark? = null, endMark: Mark? = null) : CollectionNode<Node>
Represents a sequence.